hvm: Remove noisy warnings associated with MOVS emulation.
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>
Mon, 19 Feb 2007 15:46:01 +0000 (15:46 +0000)
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>
Mon, 19 Feb 2007 15:46:01 +0000 (15:46 +0000)
Signed-off-by: Keir Fraser <keir@xensource.com>
xen/arch/x86/hvm/platform.c

index 6cb510b119cdc77b6c07f6619da0827ffa15d80e..835849c224607cb7ac62979ac2af7eb31c79d836 100644 (file)
@@ -1048,10 +1048,6 @@ void handle_mmio(unsigned long gpa)
         else
             dir = IOREQ_READ;
 
-        if ( addr & (size - 1) )
-            gdprintk(XENLOG_WARNING,
-                     "Unaligned ioport access: %lx, %d\n", addr, size);
-
         /*
          * In case of a movs spanning multiple pages, we break the accesses
          * up into multiple pages (the device model works with non-continguous
@@ -1065,8 +1061,6 @@ void handle_mmio(unsigned long gpa)
         if ( (addr & PAGE_MASK) != ((addr + size - 1) & PAGE_MASK) ) {
             unsigned long value = 0;
 
-            gdprintk(XENLOG_WARNING,
-                     "Single io request in a movs crossing page boundary.\n");
             mmio_op->flags |= OVERLAP;
 
             if ( dir == IOREQ_WRITE ) {